Given
I go to the confused home page
00:00:27.803
+ Screenshot
And
I see "Confused.com - Get that great feeling when you\'ve just used Confused.com" in the title
00:00:00.037
Given
I click on the car insurance button
00:00:06.415
+ Screenshot
When
I fill the search input with the "ME10HER" in registration field
0s
// With Callbacks
When (/^I fill the search input with the "([^"]*)" in registration field$/, (arg1, callback) => {
// Write code here that turns the phrase above into concrete actions
callback(null, 'pending');
});
// With Promises
When (/^I fill the search input with the "([^"]*)" in registration field$/, (arg1, ) => {
// Write code here that turns the phrase above into concrete actions
return Promise.resolve('pending');
});
+ Screenshot